home *** CD-ROM | disk | FTP | other *** search
/ Faces of Papua New Guinea / Faces of Papua New Guinea by Wm. C. Clarke, Ph.D. (Wayzata Technology)(3211)(1995).bin / windows / playqts / 00004_Script_4 < prev    next >
Text File  |  1995-04-10  |  282b  |  15 lines

  1. on exitFrame
  2.   global mTimeNow
  3.   put the movieTime of sprite 10 into nowT
  4.   put the duration of cast "environm.mov" into doneT
  5.   if nowT < mTimeNow then
  6.     go next
  7.   else 
  8.     if nowT < doneT then
  9.       go to frame 11
  10.     else
  11.       go next
  12.     end if
  13.   end if
  14.   
  15. end